home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / win / c / fixds.com / FIXDS < prev   
Encoding:
Text File  |  1990-02-02  |  739 b   |  24 lines

  1. #----------------------------------------------------------------------------
  2. # Makefile for FIXDS.EXE (for old MAKE)
  3. #----------------------------------------------------------------------------
  4.  
  5. fixds.obj:  fixds.c
  6.     cl -AS -c -Fc -G2c -Ox -W3 -Zp $*.c
  7.  
  8. # for debugging:
  9. #   cl -AS -c -Fc -G2c -Od -W3 -Zip $*.c
  10.  
  11. #----------------------------------------------------------------------------
  12.  
  13. fixds.exe:  fixds.obj
  14.     link fixds, , , /nodef:slibce slibcer;
  15.  
  16. # for debugging:
  17. #   link fixds, , , /nodef:slibce slibcer /co;
  18.  
  19. # If you have real mode libraries under the default names, use:
  20. #   link fixds;    (with or without the /co)
  21.  
  22. #----------------------------------------------------------------------------
  23.  
  24.